home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nothing but GIFs AGA
/
Nothing But GIFs.iso
/
utility
/
pc-dos
/
gifv501.arj
/
GIFV.SLD
< prev
next >
Wrap
Text File
|
1993-10-11
|
598b
|
23 lines
;
; GIFV.SLD
; This script will take ALL GIF files in the current DIR that are
; INTERLACED and re-write them so that they are NON-Interlaced GIF
; Files. It will also (for the heck of it!) write out a BMP file of
; the same picture for use within Windows. It also shows how to use
; the SKIPNext command. SkipPrev uses the same concept!
;
slide-type-normal
change-path *.gif
:loop
ifint :doint
skipnext :exit
goto :loop
:doint
LOADNEXT :EXIT
adjust-for-windows
WRITE B
WRITE G
goto :loop
:exit